COM AT+BVRA test
COM Enable / disable voice recognition (BT specific command).
COM Command is not required if phone does not support voice recognition.

COM V1.0	25.11.2004	T. Kleinmann
COM V1.1	13.01.2005	T. Kleinmann	added commands for enable/disable
COM V1.2	22.02.2005	T. Kleinmann	removed execute command according to draft X75 document (18.02.2005). Added comment about CASIRA board.
COM V1.3	23.02.2005	T. Kleinmann	added comment about responsibility

####################################################################################################
MESSAGE('These tests are considered to be the responsibility of accessory testers in ULM. \n\
The tests will be performed with real hardware.')
####################################################################################################


####################################################################################################
#
COM ToDo: Check URC
COM ToDo: Check response from read command
#
####################################################################################################

from attglobals import *

####################################################################################################

COM Test command
AT+BVRA=?
WAITFOR (1,'(0,1)')

####################################################################################################

COM Read command
AT+BVRA?
WAITFOR (1,'+BVRA: ')

####################################################################################################

COM Write - Enable
AT+BVRA=1
WAIT FOR OK

COM Check
AT+BVRA?
WAITFOR (1,'1')

COM Write - Disable
AT+BVRA=0
WAIT FOR OK

COM Check
AT+BVRA?
WAITFOR (1,'0')

####################################################################################################